From 387025a3a112ff68b0158ed830ea7d5c4ef92c95 Mon Sep 17 00:00:00 2001 From: tsteven4 <13596209+tsteven4@users.noreply.github.com> Date: Mon, 14 Nov 2022 11:27:35 -0700 Subject: [PATCH] update macos build system (#946) --- .github/workflows/macos.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d734aac9a..bedb27a5c 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -13,23 +13,26 @@ on: jobs: macos: name: macOS Build - runs-on: macos-11 + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: include: - QT_VERSION: '5.15.2' - XCODE_VERSION: '12.4' + XCODE_VERSION: '12.5.1' GENERATOR: 'Ninja' RELEASE: false + os: macos-11 - QT_VERSION: '6.2.4' - XCODE_VERSION: '12.5.1' + XCODE_VERSION: '13.4.1' GENERATOR: 'Xcode' RELEASE: false + os: macos-12 - QT_VERSION: '6.2.4' - XCODE_VERSION: '12.5.1' + XCODE_VERSION: '13.4.1' GENERATOR: 'Ninja' RELEASE: true + os: macos-12 steps: - name: Checkout repository -- 2.30.2